home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2008 February (DVD)
/
PCWorld_2008-02_DVD.iso
/
v cisle
/
PHP
/
PHP.exe
/
xampp-win32-1.6.5-installer.exe
/
phpMyAdmin
/
phpinfo.php
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
PHP Script
|
2007-12-20
|
360 b
|
22 lines
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
*
* @version $Id: phpinfo.php 10240 2007-04-01 11:02:46Z cybot_tm $
*/
/**
* Gets core libraries and defines some variables
*/
define('PMA_MINIMUM_COMMON', true);
require_once './libraries/common.inc.php';
/**
* Displays PHP information
*/
if ($GLOBALS['cfg']['ShowPhpInfo']) {
phpinfo();
}
?>